home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / usleep.c < prev    next >
C/C++ Source or Header  |  1991-11-05  |  1KB  |  53 lines

  1. /* 
  2.  * usleep.c --
  3.  *
  4.  *    Sleep for specified number of microseconds.
  5.  *
  6.  * Copyright 1991 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that this copyright
  10.  * notice appears in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header$";
  18. #endif /* not lint */
  19.  
  20. #include <sys/time.h>
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * usleep --
  26.  *
  27.  *    Suspend the current process for the number  of  microseconds
  28.  *    specified  by  the argument.  The actual suspension time may
  29.  *    be an arbitrary amount longer because of other  activity  in
  30.  *    the  system,  or because of the time spent in processing the
  31.  *    call.
  32.  *
  33.  * Results:
  34.  *    Always returns 0.
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41. int
  42. usleep(usec)
  43.     unsigned long usec;
  44. {
  45.  
  46.     struct timeval timeout;
  47.     timeout.tv_usec = usec % (unsigned long) 1000000;
  48.     timeout.tv_sec = usec / (unsigned long) 1000000;
  49.     select(0, (void *) 0, (void *) 0, (void *) 0, &timeout);
  50.     return 0;
  51. }
  52.  
  53.